home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / tracer / trcglob.c < prev    next >
C/C++ Source or Header  |  1997-07-22  |  1KB  |  55 lines

  1.  
  2. static char rcsid[] =
  3.     "$Id: trcglob.c,v 4.2 1997/06/25 21:44:32 pvmsrc Exp $";
  4.  
  5. /*
  6.  *         Tracer version 1.0:  A Trace File Generator for PVM
  7.  *           Oak Ridge National Laboratory, Oak Ridge TN.
  8.  *           Authors:  James Arthur Kohl and G. A. Geist
  9.  *                   (C) 1994 All Rights Reserved
  10.  *
  11.  *                              NOTICE
  12.  *
  13.  * Permission to use, copy, modify, and distribute this software and
  14.  * its documentation for any purpose and without fee is hereby granted
  15.  * provided that the above copyright notice appear in all copies and
  16.  * that both the copyright notice and this permission notice appear
  17.  * in supporting documentation.
  18.  *
  19.  * Neither the Institution, Oak Ridge National Laboratory, nor the
  20.  * Authors make any representations about the suitability of this
  21.  * software for any purpose.  This software is provided ``as is''
  22.  * without express or implied warranty.
  23.  *
  24.  * Tracer was funded by the U.S. Department of Energy.
  25.  */
  26.  
  27.  
  28. /* Tracer Header */
  29.  
  30. #include "tracer.h"
  31.  
  32.  
  33. /* Globals Variables */
  34.  
  35. TRC_ID        ID;
  36.  
  37. Pvmtmask    TRACE_MASK;
  38.  
  39. Pvmtmask    CLEAR_MASK;
  40.  
  41. char        *OUTPUT_FILE;
  42.  
  43. char        *TRACE_FILE;
  44.  
  45. int            TRACER_REGISTERED;
  46.  
  47. int            TRACE_BUF;
  48.  
  49. int            TRACE_OPT;
  50.  
  51. int         MYTID;
  52.  
  53. int         vflag;
  54.  
  55.